Files
notesnook-sync-server_custo…/Notesnook.API/Models/S3Options.cs
2022-12-28 16:20:25 +05:00

14 lines
377 B
C#

using System.ComponentModel.DataAnnotations;
using System.Runtime.Serialization;
using Microsoft.AspNetCore.Mvc;
namespace Notesnook.API.Models
{
public class S3Options
{
public string ServiceUrl { get; set; }
public string Region { get; set; }
public string AccessKeyId { get; set; }
public string SecretAccessKey { get; set; }
}
}