mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
14 lines
377 B
C#
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; }
|
|
}
|
|
} |