1
0
mirror of https://github.com/D4M13N-D3V/art_platform.git synced 2025-03-14 07:44:54 +00:00

8 lines
209 B
C#
Raw Normal View History

2024-01-27 06:53:56 -05:00
namespace ArtPlatform.API.Models.SellerService;
public class SellerServiceUpdateModel
{
public string Name { get; set; }
public string Description { get; set; }
public double Price { get; set; }
}