mirror of
https://github.com/yawaflua/yaflay.ru.git
synced 2025-12-09 20:19:32 +02:00
17 lines
428 B
C#
17 lines
428 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace api.yawaflua.ru.Models.Tables
|
|
{
|
|
[Table("Projects")]
|
|
public class Projects
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string name { get; set; }
|
|
public string description { get; set; }
|
|
public string url { get; set; }
|
|
public string image { get; set; }
|
|
}
|
|
}
|