Files
Groupware/SubProject/FLG0000/Setting.cs
chikyun.kim d762d3e623 서버 접속을 IT 로 변경
로그 관련은 현재 수정중
2019-08-28 09:38:03 +09:00

35 lines
820 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace FLG0000
{
public class UserSetting : arUtil.Setting
{
public string lastType { get; set; }
public UserSetting(string file)
{
this.filename = file;
var fi = new System.IO.FileInfo(this.filename);
if (fi.Directory.Exists == false) fi.Directory.Create();
if (fi.Exists == false)
{
this.Load();
this.Save();
}
}
public override void AfterLoad()
{
//if (lastType == "") lastType = "";
}
public override void AfterSave()
{
//throw new NotImplementedException();
}
}
}