11 lines
278 B
C#
11 lines
278 B
C#
namespace ServiceManager.API.Models
|
|
{
|
|
public class Article
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string ImageLink { get; set; } = string.Empty;
|
|
public decimal Price { get; set; }
|
|
}
|
|
}
|