10 lines
225 B
C#
10 lines
225 B
C#
|
|
namespace Catalog.Communication.Models;
|
||
|
|
|
||
|
|
public sealed class RaceImageRemoveRequest
|
||
|
|
{
|
||
|
|
public required long Id { get; init; }
|
||
|
|
|
||
|
|
public required int CodImage { get; init; }
|
||
|
|
|
||
|
|
public int? TotImgNumber { get; init; }
|
||
|
|
}
|