OF-DL/OF DL/Entities/Subscription.cs

8 lines
176 B
C#

namespace OF_DL.Entities;
public class Subscription(string username, int id)
{
public string Username { get; set; } = username;
public int Id { get; set; } = id;
}