Xiaoyun Zhang 9ba14ee15b
Fix dotnet test and reformat dotnet code (#3603)
* fix test

* install aspire workload

* format

* fix build error

* fix format

* format
2024-10-02 14:42:27 -04:00

15 lines
347 B
C#

using System.ComponentModel.DataAnnotations;
namespace DevTeam.Options;
public class GithubOptions
{
[Required]
public required string AppKey { get; set; }
[Required]
public int AppId { get; set; }
[Required]
public long InstallationId { get; set; }
[Required]
public required string WebhookSecret { get; set; }
}