blob: 0472f24e14221b495de2bd75ebc880a3e4fe5c74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Timeline.Entities
{
[Table("migrations")]
public class MigrationEntity
{
[Column("id"), Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }
[Column("name"), Required]
public string Name { get; set; } = default!;
}
}
|