namespace SVSim.Database.Models; /// /// One pending friend application. is the wire apply_id /// (auto-generated). Unique on (FromViewerId, ToViewerId) — a viewer can only /// have one outstanding apply to any given target. /// public class ViewerFriendApply { public int Id { get; set; } public long FromViewerId { get; set; } public long ToViewerId { get; set; } public DateTime CreatedAt { get; set; } /// Beginner-friend campaign tag. Defaults to 0 (no campaign). Surfaces as optional mission_type on the wire. public int MissionType { get; set; } }