You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
409 B
C#
16 lines
409 B
C#
1 month ago
|
|
||
|
using UnityEngine;
|
||
|
|
||
|
[CreateAssetMenu(fileName = "EmailData", menuName = "Inbox/Email Data", order = 1)]
|
||
|
public class EmailData : ScriptableObject
|
||
|
{
|
||
|
public string senderName;
|
||
|
public string senderEmail;
|
||
|
public string subject;
|
||
|
[TextArea(5, 20)] public string fullBodyText;
|
||
|
public string linkPreview;
|
||
|
public bool hasAttachment;
|
||
|
public bool isPhishing;
|
||
|
public string timeOrDate;
|
||
|
}
|