Skip to content

Commit

Permalink
made some properties internal
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlagunas committed May 15, 2024
1 parent dc1eb0a commit 5250736
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Reveal.Sdk.Dom/Data/DataSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ public string Id

[JsonProperty]
[JsonConverter(typeof(StringEnumConverter))]
public DataSourceProvider Provider { get; internal set; } //todo: can this be internal?
internal DataSourceProvider Provider { get; set; }

[JsonProperty("Description")]
public string Title { get; set; }

public string Subtitle { get; set; }

public Dictionary<string, object> Properties { get; internal set; } //todo: can this be internal?

[JsonProperty]
internal Dictionary<string, object> Properties { get; set; }

public override bool Equals(object obj)
{
Expand Down

0 comments on commit 5250736

Please sign in to comment.