Skip to content

Commit

Permalink
made the Expiration property public
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlagunas committed Aug 17, 2023
1 parent e3158da commit 5a484e3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ public abstract class DataDefinitionBase : SchemaType
[JsonProperty]
public DataSourceItem DataSourceItem { get; internal set; }

//not sure what this is for yet
/// <summary>
/// Gets or sets the expiration time in minutes for the data cache.
/// </summary>
[JsonProperty]
internal int Expiration { get; set; } = 1440;
public int Expiration { get; set; } = 1440;

/// <summary>
/// This is exposed via the Visualization.FilterBindings property
Expand Down

0 comments on commit 5a484e3

Please sign in to comment.