16 lines
367 B
C#
16 lines
367 B
C#
![]() |
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEditor;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[CreateAssetMenu(menuName = "MySQL/Create SqlseverData")]
|
||
|
public class DataScriptableObject : ScriptableObject
|
||
|
{
|
||
|
public string IP;
|
||
|
public string Port;
|
||
|
public string Database;
|
||
|
public string User;
|
||
|
public string Password;
|
||
|
public string Charset;
|
||
|
}
|