CreateDataSourceVM.cs 536 B

12345678910111213141516171819
  1. using FastReport.Utils.Json.Serialization;
  2. namespace FastReport.Cloud.FastReport.Models.DataSource
  3. {
  4. internal sealed class CreateDataSourceVM
  5. {
  6. [JsonProperty("name")]
  7. public string Name { get; set; }
  8. [JsonProperty("connectionString")]
  9. public string ConnectionString { get; set; }
  10. [JsonProperty("subscriptionId")]
  11. public string SubscriptionId { get; set; }
  12. [JsonProperty("connectionType")]
  13. public DataSourceConnectionType ConnectionType { get; set; }
  14. }
  15. }