Skip to content

Commit

Permalink
feat: Add new properties to SGup
Browse files Browse the repository at this point in the history
Add GuideName, Station, Logo properties to SGLineup class.
  • Loading branch information
SenexCrenshaw committed Feb 1, 2024
1 parent 0dcfd55 commit 982d3d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion StreamMaster.Domain/Common/SGLineUp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

public class SGLineup
{
public string? GuideName { get; set; }
public string? GuideNumber { get; set; }
public string? GuideName { get; set; }
public string? Station { get; set; }
public string? Logo { get; set; }
public string? URL { get; set; }
}

0 comments on commit 982d3d7

Please sign in to comment.