ASPNetCore/TestAppRuna/Services/AppSettings.cs

13 lines
225 B
C#
Raw Normal View History

2021-03-24 09:51:02 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace TestAppRuna.Services
{
public class AppSettings
{
public string CompanyName { get; set; }
}
}