Add project
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace Common.Dtos.Specialization;
|
||||
|
||||
public class CreateSpecializationRequest
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
public string? ShortName { get; set; }
|
||||
}
|
||||
12
Common/Dtos/Specialization/CreateSpecializationResponse.cs
Normal file
12
Common/Dtos/Specialization/CreateSpecializationResponse.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Common.Dtos.Common;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Common.Dtos.Specialization
|
||||
{
|
||||
public class CreateSpecializationResponse : BaseResponse
|
||||
{
|
||||
public string? CreateSpecializationResult { get; set; }
|
||||
}
|
||||
}
|
||||
8
Common/Dtos/Specialization/GetSpecializationsRequest.cs
Normal file
8
Common/Dtos/Specialization/GetSpecializationsRequest.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Common.Dtos.Common;
|
||||
|
||||
namespace Common.Dtos.Specialization;
|
||||
|
||||
public class GetSpecializationsRequest : PagedRequest
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
}
|
||||
15
Common/Dtos/Specialization/SpecializationDto.cs
Normal file
15
Common/Dtos/Specialization/SpecializationDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.Text;
|
||||
|
||||
namespace Common.Dtos.Specialization;
|
||||
|
||||
public class SpecializationDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public string? ShortName { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user