Skip to content
Snippets Groups Projects
Commit 1f70d39f authored by esantangelo's avatar esantangelo
Browse files

dtos

parent fccd024c
No related branches found
No related tags found
1 merge request!47Feature/bedelia login
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace Bedelia.Dtos
{
public class UserLoginDto
{
[Required]
public string IdentityCard { get; set; }
[Required]
public string Password { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Tsi1.BusinessLayer.Dtos
{
public class BedeliaLoginDto
{
public string IdentityCard { get; set; }
public string Password { get; set; }
}
}
......@@ -8,5 +8,6 @@ namespace Tsi1.BusinessLayer.Dtos
{
public string Name { get; set; }
public string Theme { get; set; }
public bool IsLoginBedelia { get; set; }
}
}
......@@ -9,5 +9,7 @@ namespace Tsi1.BusinessLayer.Dtos
public int Id { get; set; }
public string Name { get; set; }
public string Theme { get; set; }
public bool IsLoginBedelia { get; set; }
}
}
......@@ -9,5 +9,6 @@ namespace Tsi1.BusinessLayer.Dtos
public int Id { get; set; }
public string Name { get; set; }
public string Theme { get; set; }
public bool IsLoginBedelia { get; set; }
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment