mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
15 lines
378 B
C#
15 lines
378 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Cicm.Database.Models
|
|
{
|
|
public class DocumentRole
|
|
{
|
|
[Column(TypeName = "char(3)")]
|
|
[Key]
|
|
[Required]
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public bool Enabled { get; set; }
|
|
}
|
|
} |