forked from ddrilling/AsbCloudServer
20 lines
629 B
C#
20 lines
629 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace AsbCloudDb.Model
|
|
{
|
|
[Table("t_file_category"), Comment("Категории файлов")]
|
|
public class FileCategory : IId
|
|
{
|
|
[Key]
|
|
[Column("id")]
|
|
public int Id { get; set; }
|
|
|
|
[Column("name"), Comment("Название категории")]
|
|
public string Name { get; set; } = null!;
|
|
|
|
[Column("short_name"), Comment("Короткое название категории")]
|
|
public string? ShortName { get; set; }
|
|
}
|
|
} |