12 lines
366 B
C#
12 lines
366 B
C#
using NetinaShop.Domain.DocumentEntities.Complexes;
|
|
|
|
namespace NetinaShop.Domain.CommandQueries.Commands;
|
|
|
|
public record CreateOrUpdateComplexCommand(string Name,
|
|
string Address,
|
|
string Description,
|
|
string SupportPhone,
|
|
double Latitude,
|
|
double Longitude,
|
|
string ReturnedAddress,
|
|
string TermsAndPrivacyRules) : IRequest<Complex>; |