Files
the-biergarten-app/DataAccessLayer/UserFollow.cs
2025-10-28 18:28:30 -04:00

20 lines
424 B
C#

using System;
using System.Collections.Generic;
namespace DataAccessLayer;
public partial class UserFollow
{
public Guid UserFollowID { get; set; }
public Guid UserAccountID { get; set; }
public Guid FollowingID { get; set; }
public DateTime CreatedAt { get; set; }
public virtual UserAccount Following { get; set; } = null!;
public virtual UserAccount UserAccount { get; set; } = null!;
}