AppForKidsDesktop/AppForKids/models/User.cs

18 lines
317 B
C#
Raw Permalink Normal View History

2024-12-26 07:39:55 +00:00
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; }
}