mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
9 lines
269 B
C#
9 lines
269 B
C#
using Microsoft.Extensions.Options;
|
|
|
|
namespace PodNoms.Api.Models.Settings {
|
|
public class ChatSettings {
|
|
public string CurrentChatUser { get; set; }
|
|
public string SlackWebhookUrl { get; set; }
|
|
public string SlackChannel { get; set; }
|
|
}
|
|
} |