0
0
MyDarling/Models/Figure.cs

9 lines
200 B
C#
Raw Normal View History

2023-01-31 15:55:44 +03:00
namespace MyDarling.Models
{
2023-02-21 07:52:11 +03:00
public class Figure
{
public int Id { get; set; }
public string Description { get; set; } = string.Empty;
public string FilePath { get; set; } = string.Empty;
}
2023-01-31 15:55:44 +03:00
}