güncelleme

This commit is contained in:
2025-08-11 11:22:31 +03:00
parent 5616230e67
commit 5c7bb2c399
10 changed files with 599 additions and 55 deletions

View File

@@ -8,18 +8,18 @@ using System.Threading.Tasks;
namespace DugunSalonu.Models
{
internal class Kullanici
public class Kullanici
{
[Key]
public int id { get; set; }
[MaxLength(50), MinLength(5)]
[Required]
public required string kullaniciadi { get; set; }
[Required]
[MaxLength(50)]
public required string adi { get; set; }
[Required]
[MaxLength(50)]
public required string soyadi { get; set; }