AppForKidsDesktop/AppForKids/models/User.cs
2024-12-26 10:39:55 +03:00

18 lines
317 B
C#

using System;
using System.Collections.Generic;
namespace AppForKids.models;
public partial class User
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public int Clicks { get; set; }
public string Password { get; set; } = null!;
public string? Url { get; set; }
}