Initial code commit.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace Sufi.Demo.PeopleDirectory.Application.Features.Contacts.Queries.GetAll
|
||||
{
|
||||
public record GetAllContactsResponse
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string UserName { get; set; } = null!;
|
||||
public string Phone { get; set; } = null!;
|
||||
public string Email { get; set; } = null!;
|
||||
public string SkillSets { get; set; } = null!;
|
||||
public string Hobby { get; set; } = null!;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user