Files
yaflay.ru/Models/Tables/Projects.cs
2024-04-17 22:55:07 +03:00

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; }
}
}