put in ignore file

This commit is contained in:
2025-08-10 22:01:36 +10:00
parent c2bf5cad70
commit ba79e8f1c4
151 changed files with 21703 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace FamilyTreeAPI.Entities;
public partial class StaffCriteria
{
public string Email { get; set; } = null!;
public string? FirstName { get; set; }
public string? LastName { get; set; }
}
public partial class StaffDto
{
public int Id { get; set; }
public string? Phone { get; set; } = null!;
public string? Firstname { get; set; }
public string? Lastname { get; set; }
public string? Password { get; set; }
public string? Email { get; set; }
public int? Type { get; set; }
public bool? Active { get; set; }
public int? RoleType { get; set; }
}
public partial class ResetPassDto
{
public int Id { get; set; }
public string Password { get; set; } = null!;
}