mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
8 lines
187 B
C#
8 lines
187 B
C#
|
|
namespace DiscImageChef.Server.Models
|
||
|
|
{
|
||
|
|
public class NameCountModel<T> : BaseModel<T>
|
||
|
|
{
|
||
|
|
public string Name { get; set; }
|
||
|
|
public long Count { get; set; }
|
||
|
|
}
|
||
|
|
}
|