Skip to content

Commit

Permalink
Merge pull request #42 from bcgov/dev
Browse files Browse the repository at this point in the history
chore: listing id allow null
  • Loading branch information
ychung-mot authored Mar 26, 2024
2 parents c8b93b7 + 5ef309a commit 788da41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class DelistingRequestCreateDto
{
public long LgId { get; set; }
public long PlatformId { get; set; }
public long ListingId { get; set; }
public long? ListingId { get; set; }
public string ListingUrl { get; set; } = "";
public bool SendCopy { get; set; }
public List<string> CcList { get; set; } = new List<string>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace StrDss.Model.DelistingDtos
public class DelistingWarningCreateDto
{
public long PlatformId { get; set; }
public long ListingId { get; set; }
public long? ListingId { get; set; }
public string ListingUrl { get; set; } = "";
public string HostEmail { get; set; } = "";
public bool HostEmailSent { get; set; }
Expand Down

0 comments on commit 788da41

Please sign in to comment.