16 lines
311 B
C#
16 lines
311 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ChangeloggerMVC
|
|
{
|
|
public class Config
|
|
{
|
|
public string Name { get; set; }
|
|
public string LogPath { get; set; }
|
|
|
|
public string MSSQLConnectionString { get; set; }
|
|
}
|
|
}
|