8 lines
163 B
C#
8 lines
163 B
C#
namespace MyDarling.Models
|
|
{
|
|
public class Figure
|
|
{
|
|
public int Id { get; set; }
|
|
public string FilePath { get; set; } = string.Empty;
|
|
}
|
|
} |