CreateCompanyDto
unknown
csharp
10 months ago
368 B
4
Indexable
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HeadHunterClone.Domain.Models { public class CreateCompanyDto { public string Name { get; set; } public string Description { get; set; } public DateTime DateOfRegistration { get; set; } } }
Editor is loading...
Leave a Comment