mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
10 lines
177 B
C#
10 lines
177 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DiscImageChef.Server.Models
|
|
{
|
|
public class BaseModel<T>
|
|
{
|
|
[Key]
|
|
public T Id { get; set; }
|
|
}
|
|
} |