mirror of
https://github.com/D4M13N-D3V/art_platform.git
synced 2025-03-14 07:44:54 +00:00
8 lines
209 B
C#
8 lines
209 B
C#
![]() |
namespace ArtPlatform.API.Models.SellerService;
|
||
|
|
||
|
public class SellerServiceUpdateModel
|
||
|
{
|
||
|
public string Name { get; set; }
|
||
|
public string Description { get; set; }
|
||
|
public double Price { get; set; }
|
||
|
}
|