mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
9 lines
252 B
C#
9 lines
252 B
C#
namespace Aaru.Database.Models
|
|
{
|
|
public abstract class NameCountModel<T> : BaseModel<T>
|
|
{
|
|
public string Name { get; set; }
|
|
public bool Synchronized { get; set; }
|
|
public ulong Count { get; set; }
|
|
}
|
|
} |