Api/Netina.Domain/CommandQueries/Commands/ComplexCommands.cs

12 lines
358 B
C#
Raw Permalink Normal View History

2024-04-16 20:01:34 +03:30
using Netina.Domain.DocumentEntities.Complexes;
2024-01-22 17:31:35 +03:30
2024-04-16 20:01:34 +03:30
namespace Netina.Domain.CommandQueries.Commands;
2024-01-22 17:31:35 +03:30
public record CreateOrUpdateComplexCommand(string Name,
string Address,
string Description,
string SupportPhone,
double Latitude,
double Longitude,
string ReturnedAddress,
string TermsAndPrivacyRules) : IRequest<Complex>;